#!/usr/bin/env node/*** This is an example to setup cloud server*/'use strict'const sugoCloud = require('sugo-cloud')const co = require('co')co(function* () {// Start sugo-cloud serverlet cloud = yield sugoCloud({// Optionsport: 3000})console.log(`SUGO Cloud started at port: ${cloud}`)returncloud}).catch((err) => {/* ... */})
SUGOS
Super Ultra Gorgeous Outstanding Special